home *** CD-ROM | disk | FTP | other *** search
/ Zoom 1 / Zoom (1995)(Active Software, Ground Zero).iso / utils / u605.dms / u605.adf / Check! < prev    next >
Text File  |  1994-09-28  |  805b  |  31 lines

  1. FailAt 20
  2.  
  3. Echo "This script verifies all files in DreamTerm distribution archive using"
  4. Echo "MD5SUM checksums and PGP. If check fails you can be sure that file is"
  5. Echo "modified. If this is the case then DO NOT run any of the files as nasty"
  6. Echo "hacks can include viruses."
  7. Echo ""
  8. Echo "Unfortunately if someone decide to do such things s/he propably removes"
  9. Echo "this check script..."
  10. Echo ""
  11.  
  12. Ask "Do you have PGP installed in your system? (Y/N)"
  13. if WARN
  14.   Ask "Do you want to extract my public key from archive? (Y/N)"
  15.   if WARN
  16.     pgp -ka Key.pgp
  17.     Wait 3
  18.   endif
  19.   Echo " Checking if checksum file is ok..."
  20.   Echo ""
  21.   pgp Check.md5 -o Check
  22.   Delete >nil: Check
  23.   Wait 5
  24.   pgp >nil: md5sum.pgp
  25.   Echo " " 
  26.   md5sum -cv Check.md5
  27.   Echo ""
  28.   Ask "Press enter"
  29.   Delete md5sum >nil:
  30. endif
  31.